home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / rlib / tanh.r < prev    next >
Text File  |  1994-04-25  |  309b  |  15 lines

  1. //-------------------------------------------------------------------//
  2.  
  3. //  Syntax:  tanh ( X )
  4.  
  5. //  Description:
  6.  
  7. //  Tanh is the hyperbolic tangent of the element(s) of X.
  8.  
  9. //-------------------------------------------------------------------//
  10.  
  11. tanh = function ( x )
  12. {
  13.   return (sinh (x) ./ cosh (x));
  14. };
  15.